std::list::remove
From Cppreference
| void remove( const T& value );
| ||
Removes all elements equal to the given value value from the container.
Contents |
Parameters
| value | - | value of the elements to remove |
Return value
(none)
Example
| This section is incomplete |
Complexity
linear in the size of the container
See also
| removes elements satisfying specific condition (public member function) | |